crypto/tls.clientHelloMsg.pskBinders (field)

14 uses

	crypto/tls (current package)
		handshake_client.go#L398: 	hello.pskBinders = [][]byte{make([]byte, cipherSuite.hash.Size())}
		handshake_client_tls13.go#L281: 			hs.hello.pskBinders = nil
		handshake_messages.go#L96: 	pskBinders                       [][]byte
		handshake_messages.go#L276: 				for _, binder := range m.pskBinders {
		handshake_messages.go#L322: 	for _, binder := range m.pskBinders {
		handshake_messages.go#L338: 	if len(pskBinders) != len(m.pskBinders) {
		handshake_messages.go#L341: 	for i := range m.pskBinders {
		handshake_messages.go#L342: 		if len(pskBinders[i]) != len(m.pskBinders[i]) {
		handshake_messages.go#L346: 	m.pskBinders = pskBinders
		handshake_messages.go#L355: 			for _, binder := range m.pskBinders {
		handshake_messages.go#L613: 				m.pskBinders = append(m.pskBinders, binder)
		handshake_server_tls13.go#L278: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L361: 		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {